Nevron Open Vision Documentation
Nevron.Nov.DataStructures Namespace / NStringMap<T> Class / GetItemsStartingWith Method


In This Topic
    GetItemsStartingWith Method
    In This Topic
    Gets the subset of all key-value pairs in this map whose key starts with the given prefix.
    Syntax
    'Declaration
     
    
    Public Function GetItemsStartingWith( _
       ByVal prefix As System.String _
    ) As INSet(Of NKeyValuePair(Of String,T))
    'Usage
     
    
    Dim instance As NStringMap(Of T)
    Dim prefix As System.String
    Dim value As INSet(Of NKeyValuePair(Of String,T))
     
    value = instance.GetItemsStartingWith(prefix)
    public INSet<NKeyValuePair<string,T>> GetItemsStartingWith( 
       System.string prefix
    )

    Parameters

    prefix
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later)

    See Also